home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_10 / jagger / printf1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-25  |  235 b   |  16 lines

  1. /* Listing 3, printf.h, version 1 */
  2. #ifndef PRINTF_H
  3. #define PRINTF_H
  4.  
  5. #ifndef NDEBUG
  6.  
  7. #ifdef printf
  8. #undef printf
  9. #endif
  10. #define printf    DB_printf
  11.  
  12. int DB_printf( const char format[], ... );
  13.  
  14. #endif /* NDEBUG */
  15. #endif /* PRINTF_H */
  16.